參考資訊: 網站: https://automatetheboringstuff.com/chapter3/ 影片: https://www.youtube.com/watch?v=M-CoVBK_bLE&feature
說明:
Global and Local
- Local Variables(局部變量)
- 使用在def內的變量
 
例:
def spam():
eggs = 10 # local variables - Global Variables(全局變量)
- 沒參數命名,也沒使用代號,直接定義
 
例:
eggs = 10 # global variables
def and print:

def in def and print:

global def:

global variables:

same name LG variables:
